home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / flock.c < prev    next >
C/C++ Source or Header  |  1989-01-06  |  2KB  |  97 lines

  1. /* 
  2.  * flock.c --
  3.  *
  4.  *    Procedure to map from Unix flock system call to Sprite.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/flock.c,v 1.2 89/01/06 08:03:34 brent Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include <bit.h>
  17.  
  18. #include "compatInt.h"
  19. #include <sys/file.h>
  20. #include <errno.h>
  21. #include <stdlib.h>
  22.  
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * flock --
  28.  *
  29.  *    Procedure to map from Unix flock system call to Sprite Ioc_Lock/Unlock.
  30.  *
  31.  * Results:
  32.  *      UNIX_SUCCESS    - the call was successful.
  33.  *      UNIX_ERROR      - the call was not successful.
  34.  *                        The actual error code stored in errno.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. flock(descriptor, operation)
  44.     int descriptor;        /* descriptor for stream to lock */
  45.     int operation;        /* flags for locking descriptor */
  46. {
  47.     ReturnStatus status;
  48.     int spriteLockOp = 0;
  49.  
  50.     if (operation & LOCK_EX) {
  51.     spriteLockOp |= IOC_LOCK_EXCLUSIVE;
  52.     } else if (operation & LOCK_SH) {
  53.     spriteLockOp |= IOC_LOCK_SHARED;
  54.     }
  55.     if (operation & LOCK_NB) {
  56.     spriteLockOp |= IOC_LOCK_NO_BLOCK;
  57.     }
  58.     if (operation & LOCK_UN) {
  59.     status = Ioc_Unlock(descriptor, spriteLockOp);
  60.     } else {
  61.     status = Ioc_Lock(descriptor, spriteLockOp);
  62.     }
  63.     if (status != SUCCESS) {
  64.     errno = Compat_MapCode(status);
  65.     return(UNIX_ERROR);
  66.     } else {
  67.     return(UNIX_SUCCESS);
  68.     }
  69. }
  70.  
  71. /*
  72.  *----------------------------------------------------------------------
  73.  *
  74.  * Unix_CloseLock --
  75.  *
  76.  *    Release any locks held by this process on the given descriptor
  77.  *    before it is closed. Called by close().
  78.  *
  79.  *    This is superceeded by the cleanup done in the Sprite kernel.
  80.  *
  81.  * Results:
  82.  *    None.
  83.  *
  84.  * Side Effects:
  85.  *    None.
  86.  *
  87.  *----------------------------------------------------------------------
  88.  */
  89. /*ARGSUSED*/
  90. void
  91. Unix_CloseLock (fd)
  92.     int fd;
  93. {
  94.     return;
  95. }
  96.  
  97.